Make ignored settings be set to false by default
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Thu, 27 Jun 2013 02:18:01 +0000 (22:18 -0400)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Thu, 27 Jun 2013 21:02:58 +0000 (17:02 -0400)
gtk/gtksettings.c

index a389d6a9895e016890c915b1891f5d0c750e978e..8f75eea0e533d419cc57674547eeed85b597fb8b 100644 (file)
@@ -646,7 +646,7 @@ gtk_settings_class_init (GtkSettingsClass *class)
                                              g_param_spec_boolean ("gtk-show-input-method-menu",
                                                                    P_("Show the 'Input Methods' menu"),
                                                                    P_("Whether the context menus of entries and text views should offer to change the input method"),
-                                                                   TRUE,
+                                                                   FALSE,
                                                                    GTK_PARAM_READWRITE),
                                              NULL);
   g_assert (result == PROP_SHOW_INPUT_METHOD_MENU);
@@ -660,7 +660,7 @@ gtk_settings_class_init (GtkSettingsClass *class)
                                              g_param_spec_boolean ("gtk-show-unicode-menu",
                                                                    P_("Show the 'Insert Unicode Control Character' menu"),
                                                                    P_("Whether the context menus of entries and text views should offer to insert control characters"),
-                                                                   TRUE,
+                                                                   FALSE,
                                                                    GTK_PARAM_READWRITE),
                                              NULL);
   g_assert (result == PROP_SHOW_UNICODE_MENU);